On this page you can get a detailed analysis of a word or phrase, produced by the best artificial intelligence technology to date:
общая лексика
внешнее прерывание
аппаратное прерывание от внешнего по отношению к микропроцессору устройства или контроллера
вычислительная техника
внешнее прерывание (прерывание работы центрального процессора по сигналу от внешних устройств)
антоним
Смотрите также
общая лексика
IH
обработчик прерываний, подпрограмма обработки прерываний
процедура, получающая управление при возникновении прерывания конкретного типа. Обычно адреса обработчиков прерываний записаны в таблице векторов прерываний
синоним
Смотрите также
общая лексика
линия прерывания
проводник на печатной плате для передачи сигнала прерывания
Смотрите также
In digital computers, an interrupt (sometimes referred to as a trap) is a request for the processor to interrupt currently executing code (when permitted), so that the event can be processed in a timely manner. If the request is accepted, the processor will suspend its current activities, save its state, and execute a function called an interrupt handler (or an interrupt service routine, ISR) to deal with the event. This interruption is often temporary, allowing the software to resume normal activities after the interrupt handler finishes, although the interrupt could instead indicate a fatal error.
Interrupts are commonly used by hardware devices to indicate electronic or physical state changes that require time-sensitive attention. Interrupts are also commonly used to implement computer multitasking, especially in real-time computing. Systems that use interrupts in these ways are said to be interrupt-driven.